@charset "UTF-8";

html, body {
	margin: 0;
	padding: 0;
}

* { 
	box-sizing: border-box; 
}

img { 
	max-width: 100%; height: auto; 
}

body { 
	overflow-x: hidden; 
}

html {
  scroll-behavior: smooth;
}

body {
	background-color: #FFEBE3;
	font-family: "Epilogue", sans-serif;
	color: #C60430;
  padding-top: 120px;
}

.navbar {
	background-color: #E0183C;
	min-height: 80px;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1050;
}

.navbar-nav .nav-link {
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 17px;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: white;
  font-size: 16px;
  margin: 0 45px 0 45px;
}

.navbar-nav {
    display: flex;
    justify-content: center; 
    gap: 1rem;              
    width: 100%;
}

.navbar-nav .nav-link {
    margin: 0;               
    padding: 0.5rem 1rem;
}

.navbar-brand img {
	height: 45px;
	width: auto;
	margin: 0 40px 0 40px;
}

.nav-item img {
	height: 30px;
	width: 30px;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  background-color: #a30a23;
  color: white;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  transition: transform 0.25s ease;
}

.navbar-brand:hover img {
  transform: scale(1.08);
}

.nav-item.dropdown {
  position: relative; 
}

.nav-item.dropdown .dropdown-menu {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #F8F0E4; 
	border: 1px solid #C60430;
  padding: 0; 
  border-radius: 0; 
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2000;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block; 
}

.nav-item.dropdown .dropdown-link {
  display: block;
  color: #C60430; 
  padding: 12px 20px; 
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid #C60430; 
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-item.dropdown .dropdown-link:last-child {
  border-bottom: none; 
}

.nav-item.dropdown .dropdown-link:hover {
  background-color: #C60430; 
  color: #ffffff;
}

#seasonal,
#special-events {
  scroll-margin-top: 120px; 
}

.custom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-overlay.active {
  display: flex;
}

.custom-overlay-content {
  background: #FFEBE3;
  max-width: 700px;
  width: 80%;
  padding: 50px 40px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  animation: fadeUp 0.4s ease;
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 22px;
  color: #C60430;
  cursor: pointer;
}

.overlay-title {
  font-family: 'Lobster', cursive;
  font-size: 40px;
  color: #C60430;
  margin-bottom: 10px;
}

.overlay-price {
  font-family: 'Epilogue', sans-serif;
  font-size: 14px;
  color: #C60430;
  margin-bottom: 30px;
}

.overlay-img {
  width: 100%;
  height: 360px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.overlay-desc {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #C60430;
  max-width: 520px;
  margin: 0 auto;
}

.overlay-note {
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  color: #9a2a40;    
  margin-top: 12px;
  line-height: 1.4;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .nav-item.dropdown .dropdown-menu {
    position: static;
    display: none;
  }
  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }
}

.cart-item {
  position: relative;
}

.cart-item .cart-tooltip {
  position: absolute;
  top: 100%;            
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color:#F8F0E4; 
  color:#B1020F;             
	border: 1px solid #C60430;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;       
  opacity: 0;              
  pointer-events: none;     
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.cart-item:hover .cart-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(10px); 
}

/* ==============================================  HERO SECTION  ==============================================  */
.hero-section {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 95px 250px; 
  margin-left: 40px; 
    min-height: 100vh;
    gap: 1rem; 
    background-color: #FFEBE3;
}


.hero-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.hero-left .header1 {
    font-family: 'Lobster', cursive;
    font-size: 100px;
	margin-top: 6%;
    margin-bottom: 1rem;
    text-align: left;
	color: #C60430;
	line-height: 1.05;
  max-width: 720px;
}

.hero-left p {
    font-size: 14px;
	text-align: justify;
    margin-bottom: 2rem;
    margin-top: 2rem;
	max-width: 580px;
	color: #C60430;
}

.hero-left .btn {
    padding: 0.85rem 2.7rem;
    margin-left: 31%; 
    margin-top: 1.4rem;
	background-color: #E0183C;  
    color: #FFFFFF;        
    font-family: "Dai Banna SIL", serif;
    font-size: 35px;         
    border-radius: 50px;     
    text-decoration: none;     
    transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

.btn:hover {
    background-color: #C8E1DA; 
    transform: scale(1.05);     
    color: #C60430;           
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

.hero-right {
    flex: 1; 
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 60px;
}

.hero-right .hero-image {
    width: 750px;
    max-width: 500px; 
    height: auto;
    display: block;
}

.hero-animate .hero-in {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.hero-animate .hero-in-left {
  transform: translateX(-50px);
}

.hero-animate .hero-in-right {
  transform: translateX(50px);
}

.hero-animate.is-loaded .hero-in {
  opacity: 1;
  transform: translateX(0);
}

.hero-animate.is-loaded .hero-in-left {
  transition-delay: 80ms;
}

.hero-animate.is-loaded .hero-in-right {
  transition-delay: 160ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate .hero-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================== SPECIALTY CUPCAKES SECTION ============================================== */

.specialty-section {
    background-color: #E0183C;
    width: 100%;
    min-height: 800px;
    position: relative;
    margin-top: -100px;
    display: block;  
    padding: 30px 20px;
}

.specialty-content {
    position: absolute;    
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 900px;
    pointer-events: auto;
}

.specialty-content h2 {
    font-family: 'Lobster', cursive;
    font-size: 75px;
    margin-bottom: 1rem;
display: inline-block;
}

.specialty-content h2::before, .specialty-content h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;    
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}

.specialty-content h2::before {
  left: -70px;        
  transform: translate(-50%, -50%);
}

.specialty-content h2::after {
  right: -70px;        
  transform: translate(50%, -50%);
}

.specialty-content p {
    font-size: 16px;
    line-height: 1.5;
}

.specialty-content h2::before, .specialty-content h2::after {
  transition: width 0.4s ease;
}

.specialty-section:hover .specialty-content h2::before, .specialty-section:hover .specialty-content h2::after {
  width: 300px;
}

.specialty-cards {
  margin-top: 350px;
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.specialty-card {
  width: 340px;
  height: 460px;
  background-color: #FFF6F2;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 90px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card-image {
  width: 200px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card-text {
  text-align: center;
  padding: 10px 20px;
}

.card-text h3 {
  font-family: "Dai Banna SIL", serif;
  font-size: 32px;
  color: #C60430;
  margin-bottom: 0.4rem;
  transition: 
    transform 0.3s ease,
    text-decoration 0.3s ease,
    text-shadow 0.3s ease;
}

.card-text p {
  font-size: 15px;
  color: #C60430;
  line-height: 1.4;
}

.card-link {
  text-decoration: none; 
  color: inherit;       
  display: inline-block; 
  cursor: pointer; 
}

.specialty-card:hover .card-image {
  transform: scale(1.22);
}

.specialty-card:hover .card-text h3 {
  text-decoration: underline;
  transform: scale(1.08);
}

.home-divider{
  width: 100%;
  height: 2px;                
  margin: 40px auto;       
  display: block;
  background: transparent;   
}

.home-divider::before{
  content: "";
  display: block;
  width: 0%;                 
  height: 100%;
  background: #ffffff;       
  margin: 0 auto;           
  transition: width 0.9s ease;
}

.home-divider.is-visible::before{
  width: 85%;            
}

.home-divider--tight{ 
	margin: 20px auto; 
}

.home-divider--normal{ 
	margin: 40px auto; 
}
.home-divider--loose{ 
	margin: 100px auto; 
}



/* ============================================== CELEBRATE SECTION ============================================== */

.celebrate-section {
	position: relative;
  background-image: url("images/celebratewithtcbg.png"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 1100px; 
  display: flex;
  align-items: flex-start;       
  justify-content: center;
  overflow: hidden;   
  padding: 150px 20px 80px;
  color: #fff;       
}

.celebrate-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(104, 30, 30, 0.8); 
  z-index: 1; 
}

.celebrate-content {
  position: relative;  
  z-index: 2;    
  text-align: center;
  max-width: 900px;
}

.celebrate-section h1 {
	font-family: 'Lobster', cursive;
    font-size: 100px;
    margin-bottom: 1rem;
display: inline-block;
}

.celebrate-section p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4); 
}

.celebrate-section {
  position: relative;
}

.phone-container {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; 
  z-index: 3;
}

.phone-container {
  transform: translateX(-50%) scale(1.75); 
}

.phone-image {
  width: 100%;
  height: auto;
  display: block;
}

.phone-btn {
  position: absolute;
  left: 50%;
  padding: 0.5rem 1.5rem;   
  font-family: "Dai Banna SIL", serif;
  font-size: 20px;        
  color: #fff;
  background-color: #E0183C;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transform: translateX(-50%);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-btn:hover {
  background-color: #C8E1DA;
  color: #C60430;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

.phone-btn:nth-child(2) { 
	top: 25%; 
} 

.phone-btn:nth-child(3) { 
	top: 45%; 
}


/* ============================================== FOOTER ============================================== */

.site-footer {
  background-color: #ffffff;
  padding: 50px 80px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1250px;
  margin: 0 auto;
  gap: 60px;
}

.footer-left {
  max-width: 420px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 15px;
}

.footer-slogan {
  font-size: 14px;
  color: #C60430;
  line-height: 1.5;
	padding-left: 20px 
}

.footer-right {
  display: flex;
  gap: 60px;
}

.footer-links h4,
.footer-contact h4 {
	text-decoration: bold;
  font-size: 20px;
  color: #C60430;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-contact p {
  font-size: 14px;
  color: #C60430;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  color: #C60430;
  padding-bottom: 3px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #E0183C;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}


/* ==============================================  ABOUT US  ==============================================  */

body.about-page main {
  flex: 1;
}

.about-hero {
  position: relative;
  background-image: url("images/aboutbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -30px; 
}

body.about-page {
	padding-top: 120px; 
}

body.about-page .about-hero {
  padding-top: 40px; 
  height: 700px;      
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("images/aboutbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.about-content h1 {
  font-family: 'Lobster', cursive;
  font-size: 140px;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 18px;
  line-height: 1.5;
}

/* ============================================== ABOUT – FOUNDER SECTION ============================================== */

.founder-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 180px 130px;
  gap: 2rem;
  background-color: #FFEBE3;
}

.founder-left {
  flex: 1.2;
}

.founder-left h2 {
  font-family: 'Lobster', cursive;
  font-size: 100px;
	  line-height: 1.1;
  color: #C60430;
  margin-bottom: 1.5rem;
}

.founder-left p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 1rem;
  color: #C60430;
  text-align: justify;
}

.founder-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
		padding-right: 25px;
}

.founder-right img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 25px;
  box-shadow: 6px 6px 18px rgba(0,0,0,0.25);
}

.founder-section {
  position: relative;
  overflow: hidden;
}

.founder-section::before, .founder-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #C60430;
  transform: translateX(-50%);
  transition: width 0.8s ease;
}

.founder-section::before {
  top: 70px;
}

.founder-section::after {
  bottom: 70px;
}

.founder-section.animate-lines::before, .founder-section.animate-lines::after {
  width: 85%;
}

/* ============================================== ABOUT – COMMUNITY SECTION ============================================== */

.community-section {
  background-color: #E0183C;
  padding: 210px 40px;
  text-align: center;
  color: #ffffff;
}

.community-header {
  max-width: 1000px;
  margin: -60px auto 80px;
}

.community-header h2 {
  font-family: 'Lobster', cursive;
  font-size: 80px;
  margin-bottom: 0.7rem;
}

.community-header p {
  font-size: 16px;
  line-height: 1.6;
}

.community-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.flip-card {
  background-color: transparent;
  width: 380px;
  height: 380px;
  perspective: 1200px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
 
}

.flip-card-front img {
  position: absolute;
  inset: 0;               
  width: 100%;
  height: 100%;
  object-fit: cover;     
  border-radius: 20px;
}

.card-title {
  position: relative;
  z-index: 2;
  font-family: "Dai Banna SIL", serif;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
}

.flip-card-back {
  background-color: #FFF5F3;
  color: #95222F;
  transform: rotateY(180deg);

  display: flex;
  flex-direction: column;     
  justify-content: flex-start;
  align-items: center;     
  text-align: center;

  padding: 40px 30px;
}

.flip-card-back h4 {
  margin-bottom: 6px;
}

.community-cards h4 {
  transition: font-weight 0.2s ease, transform 0.2s ease;
}

.flip-card:hover + br + h4 {
  font-weight: 700;
  transform: scale(1.05);
}

.flip-card-back h5 {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 14px;
}

.flip-card-back p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}



/* ==================== CONTACT PAGE ========================================================================= */

.contact-hero {
  position: relative;     
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 130px;
  gap: 3rem;
   min-height: 700px;
  overflow: visible;   
	z-index: 0;
}

.contact-left {
  flex: 1.2;
  position: relative;
  z-index: 2;             
}

.contact-left h1 {
  font-family: 'Lobster', cursive;
  font-size: 140px;
  color: #C60430;
  margin-bottom: 1rem;
}

.contact-left p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 600px;
}

.btn-inquire {
  padding: 0.85rem 2.7rem;
    margin-left: 28%; 
    margin-top: 1.4rem;
	background-color: #E0183C; 
    color: #FFFFFF;          
    font-family: "Dai Banna SIL", serif;
    font-size: 35px;        
    border-radius: 50px;      
    text-decoration: none;      
    transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

.btn-inquire:hover {
    background-color: #C8E1DA;  
    transform: scale(1.05);     
    color: #C60430;                
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

.contact-right {
  flex: 1;
  position: relative;      
  min-height: 400px;        
}

.contact-right img {
  position: absolute;
  top: 110%;             
  left: 19%;
  transform: translate(-50%, -50%); 
  width: 213%;            
  height: auto;           
  object-fit: cover;      
  z-index: 1;             
}

#contact-form {
  scroll-margin-top: 120px; 
}

.contact-form-section {
  background-color: #E0183C;
  color: #fff;
  padding: 130px 90px;
  text-align: center;
}

.contact-form {
  position: relative;
  z-index: 2; 
	
}

.contact-form {
  text-align: left; 
}

.contact-form .form-label {
  font-family: 'Epilogue', sans-serif; 
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  display: block;
  margin-bottom: 6px;
  text-align: left;
}

.contact-form button {
    display: block;      
    margin: 20px auto 0;  
}

.contact-form input, .contact-form textarea {
  text-align: left; 
}

.contact-form-section h2 {
  font-family: 'Lobster', cursive;
  font-size: 70px;
  margin-bottom: 40px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  border-radius: 8px;
  padding: 15px 20px;
  border: none;
  margin-bottom: 20px;
	
}

.contact-form button {            
    font-family: "Dai Banna SIL", serif;
	color: #E0183C;
  padding: 15px 35px;
  font-size: 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}


.form-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: #ffffff; 
  font-size: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 20px;
}

.form-header::before, .form-header::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.8s ease;
}

.form-header::before {
  right: calc(1100px + -120px); 
}

.form-header::after {
  left: calc(1100px + -120px);  
}

.form-header.animate-lines::before, .form-header.animate-lines::after {
  width: 300px; 
}

.contact-location-section {
  display: flex;
  gap: 4rem;
  padding: 120px 140px;
	text-align: left;
  align-items: flex-start;
}

.contact-info {
  margin-top: 90px; 
  flex: 1;
}

.contact-map-wrapper {
  flex: 1;
  position: relative;
}

.contact-map {
  width: 100%;
  height: 400px;  
  border-radius: 10px;
  flex: 1;
  min-height: 400px;
  overflow: hidden;
  box-shadow: 6px 6px 18px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: thin;
}

.contact-info h2 {
  font-family: 'Lobster', cursive;
  font-size: 45px;
  color: #C60430;
  margin-bottom: 2rem;
  text-decoration: underline;
}

.section-title {
  font-family: 'Lobster', cursive;
  font-size: 50px;
  color: #C60430;
  margin-bottom: 40px;
	text-decoration: underline;
}

.section-desc {
	font-size: 17px;
  line-height: 1.6;
}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 20px;  
}

.info-group p {
  font-size: 17px;
  line-height: 1.6;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.5;
}

.contact-map {
  transition: transform 0.4s ease;
}

.contact-map:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .contact-map {
    height: 300px;
  }
}

.tooltip {
  display: none;         
  position: absolute;
  background: #FFD166;   
  color: #000;           
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



/* ================= CUPCAKE MENU HERO ================================================================ */

.cupcake-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 130px;
  gap: 4rem;
}

.cupcake-hero-left {
  flex: 1.2;
}

.cupcake-hero-left h1 {
  font-family: 'Lobster', cursive;
  font-size: 100px;
  color: #C60430;
  margin-bottom: 1rem;
}

.cupcake-hero-left p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
}

.btn-view-cupcakes {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.8rem 2.6rem;
  background-color: #E0183C;
  color: #FFFFFF;
  font-family: "Dai Banna SIL", serif;
  font-size: 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.25);
}

.btn-view-cupcakes:hover {
  background-color: #C8E1DA; 
  transform: scale(1.05);
  color: #C60430;            
}

.cupcake-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cupcake-hero-right img {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.image-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.image-divider img {
  width: 280px;     
  height: auto;
  z-index: 2;
}

.image-divider .line {
  height: 2px;
  background-color: #C60430; 
  width: 0;
  transition: width 0.8s ease;
}

.image-divider.animate .line {
  width: 460px;    
}

/* ================= CUPCAKE MENU SECTION ================= */

.cupcake-menu-section {
  padding: 30px 80px;
  text-align: center;
}

.menu-title {
  font-family: 'Lobster', cursive;
  font-size: 80px;
  margin-bottom: 70px;
  color: #C60430;
}

.cupcake-menu-grid {
  max-width: 1200px;
  margin: 0 auto;

  padding: 0 80px;

  display: grid;
  grid-template-columns: 55% 45%;
  gap: 55px;
}

.cupcake-menu-grid {
  justify-content: center;
}

.menu-card-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #C60430;

  width: fit-content;    
  max-width: 100%;

  background: none;
  box-shadow: none;
  border-radius: 0;

  transition: transform 0.4s ease;
}

.menu-card:hover {
  transform: scale(1.02);
}

.menu-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.menu-card {
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.menu-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.menu-card-content h3 {
  position: relative;
  display: inline-block;
}

.menu-card-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #C60430;
  transition: width 0.4s ease;
}

.menu-card:hover .menu-card-content h3::after {
  width: 100%;
}

.menu-card-content h3::after {
  bottom: -4px;  
}

.menu-card-content {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  box-sizing: border-box;

  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.88);
  text-align: left;
}

.menu-card-content h3 {
  font-family: 'Lobster', cursive;
  font-size: 30px;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;  
}

.menu-card-content p {
  font-size: 14px;
  margin-bottom: 6px;
}

.menu-card.small .menu-card-content {
  padding: 16px 24px;
}

.menu-card img {
  border-radius: 22px;
}

.menu-card-content {
  border-radius: 0 0 22px 22px;

  padding: 28px 24px; 

}

.menu-link {
  font-weight: 600;
  color: #E0183C;
}

.menu-card.small {
  height: 240px;
}

.menu-card.large {
  height: calc((240px * 2) + 40px);
}

/* ================= ALWAYS AVAILABLE SECTION ===================================================================== */

.always-available-section {
  padding: 10px 5%; 
  background-color: #FFEBE3;
}

.header-grid {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.cupcake-menu-link {
  color: #C60430;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Epilogue', sans-serif;
  transition: all 0.3s ease;
}
.cupcake-menu-link:hover {
  text-decoration: underline;
}

.filter-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}

.filter-btn {
  cursor: pointer;
  font-family: 'Epilogue', sans-serif;
  font-weight: 600;
  color: #C60430;
  text-decoration: none;
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  text-decoration: underline;
}

.filter-menu {
  display: none;
  position: absolute;
  top: 120%; 
  left: 0;
  background: #fff;
  border-radius: 6px;
  padding: 5px 0;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  list-style: none;
  margin: 0;
  z-index: 10;
}

.filter-menu li a {
  display: block;
  padding: 6px 12px;
  color: #C60430;
  text-decoration: none;
  font-family: 'Epilogue', sans-serif;
}

.filter-menu li a:hover {
  background-color: #f5f5f5;
}

.filter-wrapper.active .filter-menu {
  display: block;
}

.header-middle {
  text-align: center;
	padding-top: 50px
}
.always-title {
  font-family: 'Lobster', cursive;
  font-size: 80px;
  color: #C60430;
  margin-bottom: 10px;
}
.always-desc {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  color: #C60430;
}

.always-grid {
  display: grid;
  grid-template-columns: 16.66% 16.66% 16.66% 16.66% 16.66% 16.66%; 
  column-gap: 1%;  
  row-gap: 20px;   
  padding: 0 120px;
  box-sizing: border-box;
  justify-content: center;
}

.cupcake-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 360px; 
  text-align: center;
  font-family: 'Epilogue', sans-serif;
}

.cupcake-img {
  width: 100%;
  height: 200px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px; 
}

.cupcake-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: center;
  height: 120px;
}

.cupcake-info h3 {
  margin: 0 0 4px;
}

.cupcake-info p {
  margin: 0 0 4px;
}

.add-cart {
  margin-top: auto; 
}

.cupcake-img:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.cupcake-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.cupcake-card h3 {
  font-family: 'Epilogue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C60430;
  line-height: 1.35;
}

.cupcake-card p {
  font-size: 13px;
  color: #C60430;
}

.add-cart {
  background-color: #C60430;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-cart:hover {
   background-color: #C8E1DA;  
  transform: scale(1.05);
  color: #C60430;           
}

/*  ============================================== Section Divider ============================================== */


.section-divider {
  width: 80%;             
  max-width: 1200px;       
  height: 1.5px;         
  margin: 60px auto;       
  position: relative;
  background-color: transparent;
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #C60430; 
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 1s ease-out;     
}

.section-divider.visible::before {
  transform: translateX(-50%) scaleX(1); 
}


/*  ============================================== SEASONAL ============================================== */

.seasonal-section {
  text-align: center;
  padding: 30px 0 40px;
  font-family: 'Epilogue', sans-serif;
}


.seasonal-title-link {
  text-decoration: none;
  display: inline-block;
  
}

.seasonal-title-link:hover .seasonal-title {
  text-decoration: underline;
}

.seasonal-title {
   font-family: 'Lobster', cursive;
  font-size: 80px;
  color: #C60430;
  margin-bottom: 10px;
}

.seasonal-desc {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  color: #C60430;
}

.seasonal-prices {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  color: #C60430;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%; 
  column-gap: 2%;
  row-gap: 20px;
  padding: 0 120px;
  box-sizing: border-box;
  justify-content: center;
}

.more-info {
  background-color: #C60430;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.more-info {
  margin-top: 14px;
}

.more-info:hover {
  background-color: #C8E1DA;
  color: #C60430;
  transform: scale(1.05);
}

.always-grid, .seasonal-grid {
  justify-items: center;
}

/* ================= SPECIAL EVENTS ===================================================== */

.special-events-section {
  padding: 80px 5%;      
  background-color: #FFEBE3;
  text-align: center;
text-decoration: none;
}

.special-events-section .section-title {
  font-family: 'Lobster', cursive;
  font-size: 80px;
  color: #C60430;
  margin-bottom: 10px;
  text-decoration: none;  
}

.seasonal-section .seasonal-title {
  font-family: 'Lobster', cursive;
  font-size: 80px;
  color: #C60430;
  margin-bottom: 10px;
}

.special-events-section .section-header {
  margin-bottom: 40px;
}

.special-events-section .section-title {
 font-family: 'Lobster', cursive;
  font-size: 80px;
  color: #C60430;
  margin-bottom: 10px;
}

.special-events-section .section-desc {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  color: #C60430;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

.special-grid {
  display: grid;
  grid-template-columns: 23% 23% 23% 23%; 
  column-gap: 2%; 
  row-gap: 40px;   
  justify-content: center;
  align-items: start; 
  margin-bottom: 40px;
}

.special-grid .cupcake-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 420px;         
}

.special-grid .cupcake-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.special-grid .cupcake-img {
  width: 100%;
  height: 350px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.special-grid .cupcake-img:hover {
  transform: scale(1.15);
}

.special-grid .cupcake-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.special-grid h3 {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #C60430;
  margin: 6px 0 0;
  line-height: 1.35;
}

.special-events-section .special-cta {
  text-align: center;
  margin-top: 80px;

}

.special-events-section .contact-btn {
  padding: 1.7rem 3rem;   
  font-family: "Dai Banna SIL", serif;
  font-size: 30px;        
  color: #fff;
  background-color: #E0183C;
  border-radius: 60px;    
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transform: translateX(-50%);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}


.special-events-section .contact-btn:hover {
  background-color: #C8E1DA;
  color: #C60430;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

.custom-overlay .overlay-note {
  font-family: 'Epilogue', sans-serif;  
  font-size: 12px;                        
  color: #C60430;                        
  line-height: 1.4;
  margin-top: 20px;                      
  max-width: 500px;                     
  margin-left: auto;
  margin-right: auto;                      
  text-align: center;
  font-style: italic;                      
}

.cupcake-overlay {
  position: fixed;
  top: 70px; 
  left: 0;
  width: 100%;
  height: calc(100% - 50px); 
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.cupcake-overlay.active {
  display: flex;
}

.cupcake-overlay-content {
  background: #fff;
  border-radius: 20px;
  max-width: 550px;
  width: 90%;       
  padding: 20px 40px;
  position: relative;
  box-sizing: border-box;
}

.cupcake-overlay .overlay-title {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cupcake-overlay .overlay-price {
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.cupcake-overlay .overlay-desc {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 15px; 
}

.cupcake-overlay .overlay-cart label {
  font-size: 14px;
  margin-right: 5px;
}

.cupcake-overlay .overlay-cart {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 10px;
}

.cupcake-overlay .overlay-price + p {
  font-size: 14px;     
  margin-bottom: 8px;   
  line-height: 1.3;    
}


.cupcake-overlay .overlay-cart {
  margin-top: 10px;      
  justify-content: center; 
  gap: 15px;            
}


.cupcake-overlay .overlay-desc,
.cupcake-overlay .overlay-price + p { 
  margin-bottom: 15px;   
}




/*  ============================================== SEASONAL PAGE ============================================== */

.headerS-grid  {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.headerS-left .cupcake-menu-link {
  position: relative;
  top: -140px;          
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.cupcake-menu-link:hover {
  text-decoration: underline;
}

/* ================= SEASONAL ASSORTMENT ================= */

.seasonal-section {
  padding-bottom: 2px;  
}

.seasonal-block {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: -30px;

  padding: 70px;
  margin-top: -10px; 

  align-items: start;
  background-color: #FFEBE3;
}

.seasonal-title {
  font-family: 'Lobster', cursive;
  font-size: 60px;
  color: #C60430;
  margin-bottom: 20px;
}
.seasonal-title {
  white-space: nowrap;   
  font-size: 58px;      
}


.seasonal-title {
  position: relative;
  display: inline-block; 
  padding-right: 30px;  
}

.seasonal-title::after {
  content: "";
  position: absolute;
  left: 105%;           
  top: 50%;           
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  height: 1.5px;          
  width: 620px;        
  background: #C60430;
  border-radius: 999px;
  transition: transform 1s ease-out;
}

.seasonal-title.line-visible::after {
  transform: translateY(-50%) scaleX(1);
}


.seasonal-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
	padding-top: 30px;
}


.seasonal-right {
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
  padding-top: 125px;  
}

.seasonal-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.seasonal-head2{
	font-family: 'Epilogue';
	font-size: 30px;
	color: #C60430;
	text-decoration: bold;
}

.seasonal-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.seasonal-details li {
  font-size: 14px;
  margin-bottom: 6px;
}

 
 
.seasonal-order {
  display: flex;
  flex-wrap: wrap;      
  gap: 15px;
  margin-bottom: 15px;
	align-items: center;
}

.seasonal-order .order-btn {
  flex: 0 0 auto;       
  display: block;      
  margin-top: 10px;    
  margin-left: 0;       
  width: fit-content;   
}

.seasonal-options {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.seasonal-options input {
  margin-right: 4px;
}

.seasonal-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.seasonal-qty input {
  width: 55px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #C60430;
  text-align: center;
}

.order-btn:hover {
  background-color: #C60430;
  transform: scale(1.05);
}

.seasonal-note {
  font-size: 13px;
  opacity: 0.85;
}

.seasonal-block {
  margin: -60px auto;  
  max-width: 1300px;    
}

.seasonal-price {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
}

.order-btn {
  background: #E0183C;
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
}

.order-btn:hover{
  background-color: #C8E1DA; 
  transform: scale(1.05);
  color: #C60430;            
}

.seasonal-order select,
.seasonal-order input,
.seasonal-price span,
.order-btn {
  transition: all 0.25s ease;
}

/* ================= ORDER SELECT + QUANTITY ================= */
.seasonal-order select, .seasonal-order input[type="number"] {
  padding: 10px 15px;            
  border-radius: 12px;          
  border: 2px solid #C60430;    
  font-size: 16px;               
  outline: none;                 
  width: 170px;                  
  box-sizing: border-box;
  text-align: center;         
  transition: all 0.25s ease;   
}

.seasonal-order select:focus,
.seasonal-order input[type="number"]:focus {
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

/* ================= CART PAGE ================= */

.cart-page{
  background: #FDEBE3;
  padding: 70px 6% 90px;
  min-height: 100vh;
  box-sizing: border-box;
}

.cart-back{
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  color: #C60430;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
}

.cart-back:hover{ 
	text-decoration: underline; 
}

.cart-title{
  font-family: 'Lobster', cursive;
  font-size: 92px;
  color: #C60430;
  margin: 0 0 28px;
  line-height: 1;
}

 
.cart-head{
  display: grid;
  grid-template-columns: 52% 20% 8% 14% 6%;
  align-items: center;
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
  font-size: 15px;
  padding: 10px 14px;
  box-sizing: border-box;
}

.cart-rows{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

 
.cart-row{
  background: #fff;
  border-radius: 0;  
  display: grid;
  grid-template-columns: 52% 20% 8% 14% 6%;
  align-items: center;
  padding: 16px 14px;
  box-sizing: border-box;
  border: 1px solid rgba(198, 4, 48, 0.10);
}

 
.cart-product{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cart-index{
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
  font-size: 14px;
  width: 22px;
}

.cart-thumb{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-thumb img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.cart-name{
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-actions{
  display: flex;
  justify-content: flex-start; 
  margin-top: 15px;
}

.clear-cart-btn{
  background-color: #C60430;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.clear-cart-btn:hover{
  background-color: #C8E1DA;
  color: #C60430;
  transform: scale(1.03);
}


.cart-type, .cart-qty, .cart-price{
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
  font-size: 14px;
}

.cart-qty{
  text-align: left;
}

.cart-price{
  text-align: left;
}

 
.cart-remove{
  display: flex;
  justify-content: center;
  align-items: center;
}

.trash-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.trash-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}


.trash-btn:hover img{
  transform: scale(1.08);
}

 
.cart-subtotal{
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
  font-weight: 700;
  font-size: 20px;
  text-align: right;
  margin-top: 18px;
  padding-right: 8px;
}

.cart-checkout-wrap{
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cart-checkout{
  background: #C60430;
  color: #fff;
  text-decoration: none;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 44px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cart-checkout:hover{
  background: #C8E1DA;
  color: #C60430;
  transform: scale(1.03);
}

 
.cart-empty{
  display: none;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(198, 4, 48, 0.12);
  padding: 40px 20px;
  text-align: center;
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
  border-radius: 14px;
  margin: 10px 0 20px;
}

 
@media (max-width: 900px){
  .cart-title{ font-size: 64px; }

  .cart-head,
  .cart-row{
    grid-template-columns: 100%;
    row-gap: 10px;
  }

  .cart-remove{ justify-content: flex-start; }
}


.checkout-page{
  padding: 10px 6% 80px;
  box-sizing: border-box;
  min-height: 100vh;
  background: #FDEBE3;
  font-family: 'Epilogue', sans-serif;
  color: #C60430;
}

.checkout-title{
  font-family: 'Lobster', cursive;
  font-size: 72px;
  margin: 0 0 26px;
  line-height: 1;
  color: #C60430;
}

.checkout-grid{
  display: grid;
  grid-template-columns: 61.4% 38.6%;
  gap: 26px;
  align-items: start;
}

.panel{
  background: #fff;
  border: 1px solid rgba(198,4,48,0.12);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 22px;
}

.section-h{
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 12px;
  color: #C60430;
}

.subnote{
  font-size: 13px;
  opacity: 0.9;
  margin-top: -6px;
  margin-bottom: 14px;
}

.back-link{
  display: inline-block;
  color: #C60430;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 700;
}
.back-link:hover{ text-decoration: underline; }

.form-label{
  font-weight: 700;
  color: #C60430;
  margin-bottom: 6px;
}

.form-control, .form-select{
  border-radius: 12px;
  border: 1px solid rgba(198,4,48,0.20);
  padding: 12px 14px;
}

.row-gap{ row-gap: 14px; }

.choice-row{
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 12px;
  margin-top: 8px;
}

.choice{
  border: 1px solid rgba(198,4,48,0.18);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  background: rgba(255,255,255,0.8);
  transition: transform .2s ease, border-color .2s ease;
}

.choice:hover{
  transform: scale(1.01);
  border-color: rgba(198,4,48,0.35);
}

.choice input{
  accent-color: #C60430;
  transform: scale(1.1);
}

.choice strong{ color: #C60430; }

.summary-items{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.sum-item{
  display: grid;
  grid-template-columns: 56px 70% auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(253,235,227,0.5);
  border: 1px solid rgba(198,4,48,0.10);
}

.sum-thumb{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(198,4,48,0.10);
}

.sum-thumb img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.sum-name{
  font-size: 14px;
  font-weight: 700;
  color: #C60430;
  margin: 0 0 2px;
  line-height: 1.2;
}

.sum-meta{
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}

.sum-price{
  font-weight: 800;
  color: #C60430;
  font-size: 14px;
  white-space: nowrap;
  text-align: right;
}

.summary-totals{
  margin-top: 14px;
  border-top: 1px solid rgba(198,4,48,0.12);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.tot-row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.tot-row strong{ font-size: 16px; }

.place-order{
  width: 100%;
  margin-top: 16px;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  background: #C60430;
  color: #fff;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
  box-shadow: 0 12px 22px rgba(0,0,0,0.15);
}

.place-order:hover{
  background: #C8E1DA;
  color: #C60430;
  transform: scale(1.02);
}

.address-block{ margin-top: 10px; }
.address-block.disabled{
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.2);
}

.empty-note{
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(198,4,48,0.12);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.success-overlay{
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.success-overlay.show{ display: flex; }

.success-box{
  background: #fff;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(198,4,48,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.success-box h3{
  font-family: 'Lobster', cursive;
  color: #C60430;
  font-size: 46px;
  margin: 0 0 6px;
}

.success-box p{
  margin: 0 0 14px;
  color: #C60430;
  font-weight: 600;
}

.success-box button{
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: #C60430;
  color: #fff;
  font-weight: 800;
}

.success-box button:hover{
  background: #C8E1DA;
  color: #C60430;
}

@media (max-width: 1100px){
  .checkout-title{ font-size: 60px; }
  .checkout-grid{ grid-template-columns: 100%; }
}

@media (max-width: 576px){
  .checkout-title{ font-size: 48px; }
  .choice-row{ grid-template-columns: 100%; }
  .panel{ padding: 18px; }
}


/* ================= MOBILE / TABLET ================= */
@media (max-width: 991px) {
  .special-grid {
    grid-template-columns: 48% 48%; 
    column-gap: 4%;
  }
}

@media (max-width: 575px) {
  .special-grid {
    grid-template-columns: 100%;  
  }
}


/*  ============================================== MOBILE ============================================== */

 
@media (max-width: 1200px) {
  .always-grid { grid-template-columns: repeat(4, 100%); padding: 0 60px; }
}

 
@media (max-width: 991px) {
  .always-grid { grid-template-columns: repeat(3, 100%); padding: 0 30px; }
}

 
@media (max-width: 576px) {
  .always-grid { grid-template-columns: repeat(2, 100%); padding: 0 15px; }
}



 
@media (max-width: 991px) {
  .about-hero {
    height: 40vh; 
  }

  .about-content h1 {
    font-size: 40px;
  }

  .about-content p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {s
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-left {
        align-items: center;
    }

    .hero-left p {
        max-width: 100%;
    }

    .hero-right {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

  .hero-right .hero-image {

        margin-bottom: 2rem;
    }

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

 
  .navbar-brand img {
    height: 38px;
    margin: 0;
  }

 
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

 
  .navbar-nav .nav-link {
    margin: 0;
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: 10px;
  }

 
  .navbar-brand:hover img {
    transform: none;
  }
}

@media (max-width: 991px) {
  .specialty-content h2::before{
    display: none;
  }
	
  .nav-item.dropdown > .dropdown-menu{
    display: none;
  }

  .nav-item.dropdown.open > .dropdown-menu{
    display: block;
  }
}

@media (min-width: 992px){
  .nav-item.dropdown .dropdown-menu{
    display: none;
  }


@media (max-width: 991px){
  .navbar .dropdown-menu{
    display: none !important;
  }
}

  .specialty-content h2::after {
    width: 120px;
  }

@media (max-width: 991px) {
  .celebrate-section {
    min-height: 500px;   
    padding: 60px 15px;
  }

  .celebrate-section h1 {
    font-size: 40px;
  }

  .celebrate-section p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left {
    max-width: 100%;
  }
}

/* ============================================== ABOUT – FOUNDER SECTION ==================*/

@media (max-width: 991px) {
  .founder-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 80px 20px;
  }

  .founder-left p {
    max-width: 100%;
  }

  .founder-right {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .founder-left h2 {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  .community-header h2 {
    font-size: 45px;
  }

  .community-cards {
    gap: 40px;
  }

  .flip-card {
    width: 260px;
    height: 340px;
  }
}
 
@media (max-width: 991px) {
  .contact-hero, .contact-location-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-left, .contact-right, .contact-info, .contact-map {
    justify-content: center;
    max-width: 100%;
  }

  .contact-left h1, .contact-info h2 {
    font-size: 50px;
  }

  .contact-left p, .contact-info p {
    font-size: 16px;
  }

  .contact-form-section h2 {
    font-size: 40px;
  }
}
 
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-box {
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 25px;
  text-align: center;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: popIn 0.4s ease;
}

.success-box h3 {
  font-family: 'Lobster', cursive;
  font-size: 42px;
  color: #C60430;
  margin-bottom: 15px;
}

.success-box p {
  font-size: 16px;
  margin-bottom: 30px;
}

.success-box button {
  background-color: #E0183C;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.success-box button:hover {
  background-color: #C60430;
  transform: scale(1.05);
}
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* ======================= HOME PAGE RESPONSIVE ======================= */

 
@media (max-width: 991px) {

 
  body { padding-top: 95px; }

  .navbar-brand img { margin: 0 16px; height: 40px; }

  .navbar-collapse {
    background: #E0183C;
    padding: 12px 16px 18px;
  }

  .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;    
    align-items: center;
    gap: 10px;
    padding: 12px 0;
  }

  .navbar-nav .nav-link {
    width: 92%;
    text-align: center;
    padding: 10px 14px;
  }
 
 
  .nav-item.dropdown .dropdown-menu {
    position: static;
    width: 92%;
    margin: 0 auto;
  }

 
  .hero-section {
    flex-direction: column;
    padding: 30px 20px 70px;
    margin-left: 0;
    min-height: auto;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-left .header1 {
    font-size: 64px;
    max-width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .hero-left p {
    max-width: 680px;
    font-size: 15px;
    text-align: center;
    margin: 18px 0 22px;
  }

  .hero-left .btn {
    margin-left: 0;
    font-size: 26px;
    padding: 0.7rem 2.1rem;
  }

  .hero-right {
    justify-content: center;
    padding-left: 0;
    margin-top: 18px;
  }

  .hero-right .hero-image {
    width: min(520px, 92vw);
    max-width: 92vw;
  }

   
  .specialty-section {
    min-height: auto;
    margin-top: 0;
    padding: 70px 16px 40px;
  }

  .specialty-content {
    position: static;
    transform: none;
    margin: 0 auto 26px;
    max-width: 900px;
  }

  .specialty-content h2 {
    font-size: 54px;
  }

 
  .specialty-content h2::before,
  .specialty-content h2::after {
    display: none;
  }

  .specialty-cards {
    margin-top: 0;
    gap: 28px;
  }

  .specialty-card {
    width: min(340px, 92vw);
    height: auto;
    padding-top: 70px;
    padding-bottom: 24px;
  }

  .card-image {
    width: 180px;
    height: 170px;
  }

 
  .celebrate-section {
    min-height: auto;
    padding: 90px 16px 90px;
  }

  .celebrate-section h1 {
    font-size: 64px;
  }

  .celebrate-section p {
    font-size: 15px;
  }

  .phone-container {
    position: relative;
    top: auto;
    left: auto; 
    width: min(360px, 86vw);
    margin: 40px auto 0;
  }

  .phone-btn {
    font-size: 18px;
    padding: 0.45rem 1.2rem;
  }

  .phone-btn:nth-child(2) { 
	  top: 28%; 
	} 
	
  .phone-btn:nth-child(3) { 
	  top: 48%; 
	}
  
  .site-footer { 
	  padding: 40px 24px; 
	}
  .footer-inner { 
	  flex-direction: column; gap: 28px; 
	}
  .footer-right { 
	  flex-direction: column; gap: 20px; 
	}
}


/* ---------- PHONE ---------- */
@media (max-width: 576px) {

 
  .hero-left .header1 {
    font-size: 46px;
    line-height: 1.05;
  }

  .hero-left p {
    font-size: 14px;
    text-align: justify;  
  }

  .hero-left .btn {
    font-size: 22px;
    padding: 0.65rem 1.8rem;
  }

  .hero-right .hero-image {
    width: min(420px, 92vw);
  }

 
  .specialty-content h2 {
    font-size: 40px;
  }

  .specialty-content p {
    font-size: 14px;
  }

 
  .celebrate-section h1 {
    font-size: 46px;
  }

  .phone-container {
    width: min(320px, 88vw);
  }

  .phone-btn {
    font-size: 16px;
    padding: 0.42rem 1.1rem;
  }

 
  .footer-logo { height: 60px; }
  .footer-links h4,
  .footer-contact h4 { font-size: 18px; }
}


@media (max-width: 991px) {
  .navbar-collapse {
    background: #E0183C;
    padding: 12px 16px 18px;
  }

  .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
  }

  .navbar-nav .nav-link {
    width: 92%;
    text-align: center;
  }
}

/* ================= CELEBRATE SECTION MOBILE FIX ================= */
@media (max-width: 991px) {

  .celebrate-section{
    display: flex;
    flex-direction: column;     
    align-items: center; 
    justify-content: flex-start;
    text-align: center;
    padding: 80px 16px 80px;   
    min-height: auto;
  }

  .celebrate-content{
    max-width: 720px;
    margin: 0 auto;
  }

  .celebrate-section h1{
    font-size: 56px;
    line-height: 1.05;
  }

  .celebrate-section p{
    font-size: 15px;
    max-width: 620px;
  }


  .phone-container{
    position: relative;         
    top: auto;
    left: auto;
    transform: none !important;
    width: min(420px, 90vw);   
    margin: 35px auto 0;
    z-index: 3;
  }

  .phone-image{
    width: 100%;
    height: auto;
    display: block;
  }

  .phone-btn{
    font-size: 18px;
    padding: 0.55rem 1.35rem;
  }

  .phone-btn:nth-child(2){ top: 30%; }
  .phone-btn:nth-child(3){ top: 52%; }
}


@media (max-width: 576px) {
  .celebrate-section h1{ font-size: 44px; }
  .phone-container{ width: min(360px, 92vw); }
  .phone-btn{ font-size: 16px; padding: 0.5rem 1.2rem; }
}


/* ================= FOOTER ALIGNMENT FIX ================= */
@media (max-width: 991px) {
  .footer-inner,
  .footer-left,
  .footer-right,
  .footer-links,
  .footer-contact {
    text-align: left;         
    align-items: flex-start;
  }

  .footer-links ul { padding-left: 0; }
}

@media (max-width: 576px) {

  .hero-left p,
  .hero-left .justify-text {
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-section {
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {

  .specialty-section {
    margin-top: -40px;   
    padding-top: 40px; 
  }

  .specialty-content {
    margin-bottom: 20px; 
  }
}

@media (max-width: 576px) {

  .specialty-section {
    margin-top: -70px;  
    padding-top: 30px;
  }
}


/* ============================================== ABOUT – MOBILE ============================================== */

@media (max-width: 991px) {

  body.about-page { padding-top: 95px; }

  body.about-page .about-hero {
    height: auto;
    min-height: 520px;
    margin-top: 0;
    padding: 70px 16px 50px;
  }

  .about-content {
    max-width: 760px;
    padding: 0 12px;
  }

  .about-content h1 {
    font-size: 80px;
    line-height: 1.05;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .founder-section {
    flex-direction: column;
    padding: 90px 24px;
    gap: 28px;
    text-align: center;
  }

  .founder-left { width: 100%; }
  .founder-left h2 {
    font-size: 64px;
    margin-bottom: 0.5rem;
  }

  .founder-left p {
    max-width: 720px;
    margin: 0 auto;
    text-align: left; 
    font-size: 15px;
  }

  .founder-right {
    justify-content: center;
    padding-right: 0;
    width: 100%;
  }

  .founder-right img {
    max-width: 420px;
    width: min(420px, 90vw);
  }
	
  .founder-section::before { top: 30px; }
  .founder-section::after  { bottom: 30px; }


  .community-section {
    padding: 120px 18px;
  }

  .community-header {
    margin: 0 auto 40px;
    max-width: 860px;
  }

  .community-header h2 {
    font-size: 58px;
  }

  .community-header p {
    font-size: 15px;
  }

  .community-cards {
    gap: 28px;
  }

  .flip-card {
    width: min(340px, 92vw);
    height: min(340px, 92vw);
  }

  .flip-card-back {
    padding: 28px 22px;
  }

  .flip-card-back p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {

  body.about-page .about-hero {
    min-height: 460px;
    padding: 65px 14px 45px;
  }

  .about-content h1 {
    font-size: 56px;
  }

  .about-content p {
    font-size: 14px;
  }

  .founder-section {
    padding: 75px 16px;
  }

  .founder-left h2 {
    font-size: 46px;
    line-height: 1.05;
  }

  .founder-left p {
    font-size: 14px;
  }

  .founder-right img {
    width: min(360px, 92vw);
    max-width: 92vw;
  }

  .community-section {
    padding: 90px 14px;
  }

  .community-header h2 {
    font-size: 46px;
  }

  .community-header p {
    font-size: 14px;
  }

  .flip-card {
    width: 92vw;
    height: 92vw; 
    max-width: 360px;
    max-height: 360px;
  }

  .flip-card-back h4 { 
	  font-size: 18px; 
	}
	
  .flip-card-back h5 { 
	  font-size: 13px; 
	}
	
  .flip-card-back p  { 
	  font-size: 13px; 
	}

  .community-section .community-cards > .flip-card > h4 {
    font-size: 18px;
  }
}

body.about-page .community-cards .flip-card{
  margin-bottom: 18px;  
}

body.about-page .community-cards .flip-card > h4{
  margin: 10px 0 0;
  line-height: 1.2;
  font-size: 18px;
  color: #ffffff;
}

@media (max-width: 991px){
  body.about-page .community-cards{
    gap: 34px;          
  }
}
@media (max-width: 576px){
  body.about-page .community-cards{
    gap: 38px;
  }
  body.about-page .community-cards .flip-card{
    margin-bottom: 26px; 
  }
}

/* ================= CUPCAKES PAGE RESPONSIVE PATCH ================= */

@media (max-width: 991px) {

  .cupcake-hero{
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 26px;
  }

  .cupcake-hero-left{
    flex: unset;
    width: 100%;
  }

  .cupcake-hero-left h1{
    font-size: 72px;
    line-height: 1.05;
  }

  .cupcake-hero-left p{
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
  }

  .btn-view-cupcakes{
    font-size: 24px;
    padding: 0.75rem 2.2rem;
  }

  .cupcake-hero-right{
    width: 100%;
    justify-content: center;
  }

  .cupcake-hero-right img{
    max-width: 520px;
    width: min(520px, 92vw);
  }

  .image-divider{
    gap: 16px;
    margin: 10px 0 20px;
  }

  .image-divider img{
    width: min(240px, 60vw);
  }

  .image-divider.animate .line{
    width: 220px; 
  }


  .cupcake-menu-section{
    padding: 30px 20px;
  }

  .menu-title{
    font-size: 56px;
    margin-bottom: 36px;
  }


  .cupcake-menu-grid{
    grid-template-columns: 100%;
    gap: 26px;
    padding: 0;        
    max-width: 860px;
  }

  .menu-card-stack{
    gap: 26px;
  }

  .menu-card.small,
  .menu-card.large{
    height: auto;
  }

  .menu-card{
    width: 100%;
  }

  .menu-card img{
    width: 100%;
    height: auto;
    border-radius: 22px;
  }

  .menu-card-content{
    padding: 18px 18px;
  }

  .menu-card-content h3{
    font-size: 28px;
    margin-bottom: 8px;
  }

  .menu-card-content p{
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  .cupcake-hero{
    padding: 32px 16px;
  }

  .cupcake-hero-left h1{
    font-size: 50px;
  }

  .cupcake-hero-left p{
    font-size: 14px;
  }

  .btn-view-cupcakes{
    font-size: 20px;
    padding: 0.65rem 1.8rem;
  }

  .image-divider.animate .line{
    width: 120px;
  }

  .menu-title{
    font-size: 44px;
  }

  .menu-card-content{
    padding: 14px 14px;
  }

  .menu-card-content h3{
    font-size: 24px;
  }

  .menu-card-content p{
    font-size: 13px;
  }
}

/* ========================================================= CUPCAKES 2 ========================================================= */

@media (max-width: 991px) {

  .header-grid{
    grid-template-columns: 100%;
    gap: 18px;
    margin-bottom: 24px;
    text-align: center;
  }

  .header-left{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 18px;
  }

  .header-middle{
    padding-top: 10px;
  }

  .always-title{
    font-size: 60px;
    line-height: 1.05;
  }

  .always-desc{
    font-size: 15px;
  }
	
  .always-grid,
  .seasonal-grid{
    padding: 0 30px;
  }

  .always-grid{
    grid-template-columns: 25% 25% 25% 25%;
    column-gap: 16px;
    row-gap: 22px;
  }

  .seasonal-grid{
    grid-template-columns: 33.333% 33.333% 33.333%;
    column-gap: 18px;
    row-gap: 22px;
  }
	
  .special-grid{
    grid-template-columns: 50% 50%;
    column-gap: 18px;
    row-gap: 28px;
    padding: 0 30px;
  }

  .special-events-section{
    padding: 60px 5%;
  }

  .special-events-section .contact-btn{
    transform: none;
    display: inline-block;
  }
}


@media (max-width: 576px) {

  .always-available-section{
    padding: 10px 18px;
  }

  .header-left{
    flex-direction: column;
    gap: 12px;
  }

  .always-title{
    font-size: 46px;
  }

  .always-desc, .seasonal-desc, .seasonal-prices, .special-events-section .section-desc{
    font-size: 14px;
    line-height: 1.5;
  }

  .always-grid{
    grid-template-columns: 50% 50%;
    padding: 0 14px;
    column-gap: 14px;
    row-gap: 18px;
  }


  .cupcake-card{
    height: auto;
    min-height: 0;
  }

  .cupcake-img{
    height: 160px;
    padding: 10px;
  }

  .cupcake-info{
    height: auto;
  }

  .cupcake-card h3{
    font-size: 13px;
  }

  .add-cart{
    padding: 7px 14px;
    font-size: 12px;
  }


  .seasonal-grid{
    grid-template-columns: 50% 50%;
    padding: 0 14px;
  }

  .seasonal-title{
    font-size: 46px;
    line-height: 1.05;
  }

  .special-grid{
    grid-template-columns: 100%;
    padding: 0 14px;
  }

  .special-events-section .section-title{
    font-size: 46px;
    line-height: 1.05;
  }

  .special-events-section{
    padding: 50px 18px;
  }

  .cupcake-overlay{
    top: 80px;
    height: calc(100% - 80px);
    padding: 14px;
  }

  .cupcake-overlay-content{
    width: 100%;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .custom-overlay-content{
    width: 92%;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .overlay-title{
    font-size: 30px;
  }

  .overlay-img{
    height: 240px;
  }
}

@media (max-width: 576px) {

  .header-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: center;
  }

  .header-left {
    display: flex;
    flex-direction: column;  
    align-items: flex-start; 
    gap: 6px;
  }


  .header-left .cupcake-menu-link {
    font-size: 14px;
  }


	
@media (max-width: 576px) {

  .seasonal-title {
    font-size: 46px;      
    line-height: 1.05;
    padding: 0 12px;    
    text-align: center;
  }

  .seasonal-desc, .seasonal-prices {
    font-size: 14px;
    padding: 0 14px;
  }
}
}

@media (max-width: 576px) {
  .seasonal-section .seasonal-title {
    font-size: 46px !important;
    line-height: 1.05 !important;
    padding: 0 12px !important;
    text-align: center !important;
    word-break: break-word; 
  }
}

@media (max-width: 991px) {
  .seasonal-section .seasonal-title {
    font-size: 46px !important;
    line-height: 1.05 !important;
    padding: 0 12px !important;
    text-align: center !important;
  }
}

@media (max-width: 991px) {


  .headerS-grid {
    grid-template-columns: 100%;
    gap: 12px;
    margin-bottom: 20px;
  }

  .headerS-left .cupcake-menu-link {
    position: static;
    top: auto;
    display: inline-block;
    margin: 10px 0 0;
  }

  .header-middle {
    padding-top: 0 !important;
    text-align: center;
  }

  .always-title {
    font-size: 60px;
    line-height: 1.05;
  }

  .always-desc {
    font-size: 14px;
  }

 
  .seasonal-block {
    grid-template-columns: 100%;
    gap: 18px;
    padding: 28px 18px;
    margin-top: 0;
  }

  .seasonal-left, .seasonal-right {
    padding-top: 0;
  }

  .seasonal-left {
    text-align: center;
  }

  .seasonal-title {
    white-space: normal;   
    font-size: 48px;
    line-height: 1.05;
    padding-right: 0;    
    margin-bottom: 14px;
  }


  .seasonal-title::after {
    display: none;
  }


  .seasonal-image img {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }

 
  .seasonal-right {
    text-align: left;
  }

  .seasonal-head2 {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .seasonal-desc {
    font-size: 14px;
  }


  .seasonal-order {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    align-items: start;
    margin-top: 14px;
  }

  .seasonal-order select,
  .seasonal-order input[type="number"] {
    width: 100%;
    max-width: 420px;
  }

  .seasonal-price {
    margin: 0;
  }

  .seasonal-add {
    width: 100%;
    max-width: 420px;
    display: block;
    margin-top: 12px;
  }
}


@media (max-width: 576px) {
  .always-title { font-size: 46px; }
  .seasonal-title { font-size: 38px; }
}


@media (max-width: 991px) {


  .headerS-left {
    text-align: left;
    width: 100%;
  }

  .headerS-left .cupcake-menu-link {
    display: inline-block;
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 991px) {

  .seasonal-note {
    margin-bottom: 30px;  
  }

  .seasonal-block {
    margin-bottom: 4px;
  }
}

@media (max-width: 991px) {
  .headerS-left .cupcake-menu-link {
    padding-left: 16px;  
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

.headerS-grid {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.headerS-left .cupcake-menu-link {
  position: static;
  display: inline-block;
}

@media (max-width: 991px) {
  .headerS-grid {
    grid-template-columns: 100%;   
    text-align: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .headerS-left {
    text-align: left;
  }

  .headerS-left .cupcake-menu-link {
    padding: 10px 16px; 
  }

  .header-middle {
    padding-top: 0;
  }

  .always-title {
    font-size: 60px; 
    line-height: 1.05;
  }

  .always-desc {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .headerS-left .cupcake-menu-link {
    padding: 10px 18px;
    font-size: 14px;
  }

  .always-title {
    font-size: 48px; 
  }

  .always-desc {
    font-size: 13px;
  }
}

@media (max-width: 1100px) {

  .headerS-grid{
    grid-template-columns: 180px 100% 180px;
    gap: 10px;
    margin-bottom: 22px;
  }

  .headerS-left{
    display: flex;
    align-items: center;
  }

  .headerS-left .cupcake-menu-link{
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
    position: static; 
  }

  .header-middle{
    text-align: center;
    padding-top: 0;
  }

  .always-title{
    font-size: 64px;
    line-height: 1.05;
    margin: 0;
  }

  .always-desc{
    font-size: 14px;
    margin: 0;
  }
}

@media (max-width: 1100px) {

  .seasonal-block{
    grid-template-columns: 100% 100%; 
    gap: 30px;                  
    padding: 50px 40px;
  }

  .seasonal-right{
    padding-top: 70px;
  }

  .seasonal-image img{
    max-width: 100%;
  }
}


@media (max-width: 991px) {

  .headerS-grid {
    grid-template-columns: 100% !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }

  .headerS-left {
    text-align: left !important;
    width: 100% !important;
  }

  .headerS-left .cupcake-menu-link {
    position: static !important;
    top: auto !important;
    display: inline-block !important;
    padding: 10px 16px !important;
    margin: 8px 0 0 !important;
  }

  .header-middle {
    padding-top: 0 !important;
    text-align: center !important;
  }

  .always-title {
    font-size: 56px !important;
    line-height: 1.05 !important;
  }

  .seasonal-block {
    grid-template-columns: 100% !important;
    gap: 18px !important;
    padding: 28px 18px !important;
    margin-top: 0 !important;
    margin-bottom: 30px !important; 
  }

  .seasonal-right {
    padding-top: 0 !important;
  }

  .seasonal-title {
    white-space: normal !important;
    font-size: 44px !important;
    line-height: 1.08 !important;
    padding-right: 0 !important;
  }

  .seasonal-title::after {
    display: none !important;
  }

  .seasonal-image img {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 576px) {
  .always-title { font-size: 46px !important; }
  .seasonal-title { font-size: 36px !important; }
}

@media (min-width: 992px) and (max-width: 1100px) {

  .headerS-grid {
    grid-template-columns: 180px 100% 180px !important;
    gap: 10px !important;
  }

  .headerS-left .cupcake-menu-link {
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  .seasonal-block {
    grid-template-columns: 100% 100% !important;
    gap: 30px !important;         
    padding: 50px 40px !important;
  }

  .seasonal-right {
    padding-top: 70px !important;
  }
}

@media (max-width: 1100px) {

  .contact-hero {
    padding: 30px 60px;
    gap: 2rem;
    min-height: 620px;
  }

  .contact-left h1 {
    font-size: 100px;
  }

  .btn-inquire {
    margin-left: 0;
    display: inline-block;
  }

  .contact-right img {
    top: 105%;
    left: 35%;
    width: 160%;
  }

  .contact-form-section {
    padding: 90px 60px;
  }
	
  .form-header::before,
  .form-header::after {
    display: none;
  }


  .contact-location-section {
    padding: 80px 70px;
    gap: 2.5rem;
  }

  .contact-info {
    margin-top: 40px;
  }
}


@media (max-width: 991px) {

  .contact-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 22px;
    min-height: auto;
  }

  .contact-left {
    width: 100%;
  }

  .contact-left h1 {
    font-size: 72px;
    line-height: 1.05;
  }

  .contact-left p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
  }


  .btn-inquire {
    margin-left: 0;
    display: inline-block;
    font-size: 26px;
    padding: 0.8rem 2.2rem;
  }

 
  .contact-right {
    width: 100%;
    min-height: auto;
    display: flex;
    justify-content: center;
  }

  .contact-right img {
    position: static;  
    transform: none;        
    width: min(520px, 92vw);
    height: auto;
    margin-top: 24px;
  }


  .contact-form-section {
    padding: 70px 22px;
    text-align: center;
  }

  .contact-form-section h2 {
    font-size: 52px;
    margin-bottom: 24px;
  }

 
  .form-header::before,
  .form-header::after {
    display: none;
  }


  .contact-location-section {
    flex-direction: column;
    padding: 70px 22px;
    gap: 30px;
  }

  .contact-info {
    margin-top: 0;
  }

  .section-title {
    font-size: 42px;
    margin-bottom: 22px;
  }

  .contact-info h2 {
    font-size: 40px;
  }

  .contact-map {
    height: 340px;
  }
}


/* ---------- Small phones ---------- */
@media (max-width: 576px) {

  .contact-left h1 {
    font-size: 54px;
  }

  .btn-inquire {
    font-size: 22px;
    padding: 0.7rem 1.8rem;
  }

  .contact-form-section h2 {
    font-size: 42px;
  }

  .contact-map {
    height: 280px;
  }

  .section-title {
    font-size: 36px;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .info-group p,
  .section-desc {
    font-size: 15px;
  }
}

@media (max-width: 576px) {

  .contact-right {
    display: none;
  }

}


@media (max-width: 991px) {

  .contact-right {
    display: none;
  }

   
  .contact-hero {
    padding: 80px 20px;
    justify-content: center;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-inquire {
    margin-left: 0;   
  }
}

 
@media (min-width: 992px) {

  .contact-right {
    display: block;        
    min-height: 650px;    
  }

  .contact-right img {
    max-width: none;         
    width: clamp(600px, 45vw, 980px);   
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
  }
}
 

@media (min-width: 992px){

  
  .contact-right{
    position: relative;
    min-height: 650px;   
  }

  
  .contact-right img{
    position: absolute !important;

  
    left: auto !important;
    right: 0px !important;    
    top: 88% !important;        

    transform: translateY(-50%) !important;

 
    width: clamp(900px, 75vw, 1500px) !important;
    max-width: none !important;
    height: auto !important;

    z-index: 1;
    pointer-events: none;
  }
}

 
@media (min-width: 992px){
  .contact-hero{
    padding-right: 0 !important; 
  }
}

@media (max-width: 991px) {

  .contact-location-section {
    flex-direction: column;      
    align-items: center;     
    text-align: center;
    padding: 70px 20px;
    gap: 40px;
  }

  .contact-map-wrapper {
    width: 100%;
    max-width: 520px;
    text-align: center;
  }

  .contact-map {
    width: 100%;
    height: 320px;
  }

  .contact-info {
    margin-top: 0;
    max-width: 520px;
    text-align: center;
  }

  .contact-info h2 {
    text-align: center;
  }

  .info-group {
    align-items: center;
  }
}

@media (max-width: 1100px) {
  .cart-page {
    padding: 70px 4% 90px;
  }

  .cart-title {
    font-size: 74px;
  }

  .cart-head,
  .cart-row {
    grid-template-columns: 56% 18% 8% 12% 6%;
  }

  .cart-product {
    gap: 12px;
  }

  .cart-thumb {
    width: 50px;
    height: 50px;
  }
}



@media (max-width: 900px) {

  .cart-page {
    padding: 70px 18px 90px;
  }

  .cart-title {
    font-size: 54px;
    margin-bottom: 18px;
  }

  
  .cart-head {
    display: none;
  }


  .cart-row {
    grid-template-columns: 100%;
    row-gap: 12px;
    padding: 16px 14px;
    border-radius: 16px;  
  }

 
  .cart-product {
    gap: 12px;
  }

  .cart-name {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.35;
  }

 
  .cart-type,
  .cart-qty,
  .cart-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
  }

  .cart-type::before {
    content: "Type:";
    font-weight: 700;
    width: 70px;
  }

  .cart-qty::before {
    content: "Qty:";
    font-weight: 700;
    width: 70px;
  }

  .cart-price::before {
    content: "Price:";
    font-weight: 700;
    width: 70px;
  }

 
  .cart-remove {
    justify-content: flex-start;
  }

  .trash-icon-img {
    width: 20px;
    height: 20px;
  }

 
  .cart-actions {
    justify-content: center;
  }

  .cart-subtotal {
    text-align: center;
    padding-right: 0;
    margin-top: 18px;
  }

  .cart-checkout {
    width: 100%;
    max-width: 420px;
    text-align: center;
  }
}


@media (max-width: 576px) {
  .cart-title {
    font-size: 44px;
  }

  .cart-thumb {
    width: 46px;
    height: 46px;
  }

  .clear-cart-btn {
    width: 100%;
    max-width: 420px;
  }
}

/* ================= MOBILE NAVBAR COMPACT FIX ================= */
@media (max-width: 991px) {

  .navbar-nav {
    width: auto !important;
    justify-content: flex-start !important;
    align-items: flex-start;
    gap: 6px; 
  }

  .navbar-nav .nav-item {
    width: auto;
  }

  .navbar-nav .nav-link {
    white-space: nowrap;    
    font-size: 16px;     
    padding: 8px 0;
    line-height: 1.2;
  }
	
  .navbar-nav .dropdown-menu {
    padding-left: 14px;
  }

  .dropdown-link {
    font-size: 15px;
    white-space: nowrap;
  }
}



